Conversation
| .filter(lambda g: (g.status == "x").sum() >= args.nfails) | ||
| .reset_index() | ||
| .assign(test=lambda df: df.file + "." + df.test) | ||
| .assign(test=lambda df: df.file + "." + df.test) # type: ignore |
There was a problem hiding this comment.
df.file is type Any and it's not easy to cast this within a lambda so just ignoring it.
| except (ProcessLookupError, psutil.NoSuchProcess, psutil.AccessDenied): | ||
| return # pragma: nocover | ||
|
|
||
| assert self.memory_limit |
There was a problem hiding this comment.
self.memory_limit should be set by this point as it's used on the next line in a division, so asserting it to make mypy happy that it's not None.
Unit Test ResultsSee test report for an extended history of previous test failures. This is useful for diagnosing flaky tests. 27 files ±0 27 suites ±0 9h 44m 15s ⏱️ - 10m 30s For more details on these failures and errors, see this check. Results for commit fac040f. ± Comparison against base commit 1a1953d. |
|
Test failures appear unrelated. Given these are just some small typing tweaks I'm going to merge. |
Looks like
mypyis failing on main. This PR fixes up those small issues.